home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 242 / Issue 242 - April 2008 - DPCS0408DVD.ISO / Software Money Savers / VirtualDub / Source / VirtualDub-1.7.7-src.7z / src / Riza / h / displaymgr.h < prev   
Encoding:
C/C++ Source or Header  |  2007-07-15  |  3.6 KB  |  144 lines

  1. //    VirtualDub - Video processing and capture application
  2. //    A/V interface library
  3. //    Copyright (C) 1998-2007 Avery Lee
  4. //
  5. //    This program is free software; you can redistribute it and/or modify
  6. //    it under the terms of the GNU General Public License as published by
  7. //    the Free Software Foundation; either version 2 of the License, or
  8. //    (at your option) any later version.
  9. //
  10. //    This program is distributed in the hope that it will be useful,
  11. //    but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. //    GNU General Public License for more details.
  14. //
  15. //    You should have received a copy of the GNU General Public License
  16. //    along with this program; if not, write to the Free Software
  17. //    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. #ifndef f_VD2_RIZA_DISPLAYMGR_H
  20. #define f_VD2_RIZA_DISPLAYMGR_H
  21.  
  22. #ifdef _MSC_VER
  23.     #pragma once
  24. #endif
  25.  
  26. #include <vd2/system/vdstl.h>
  27. #include <vd2/system/thread.h>
  28.  
  29. class VDVideoDisplayManager;
  30.  
  31. class VDVideoDisplayClient : public vdlist_node {
  32. public:
  33.     VDVideoDisplayClient();
  34.     ~VDVideoDisplayClient();
  35.  
  36.     void Attach(VDVideoDisplayManager *pManager);
  37.     void Detach(VDVideoDisplayManager *pManager);
  38.     void SetPreciseMode(bool enabled);
  39.     void SetTicksEnabled(bool enabled);
  40.     void SetRequiresFullScreen(bool fs);
  41.  
  42.     const uint8 *GetLogicalPalette() const;
  43.     struct HPALETTE__ *GetPalette() const;
  44.     void RemapPalette();
  45.  
  46.     virtual void OnTick() {}
  47.     virtual void OnDisplayChange() {}
  48.     virtual void OnForegroundChange(bool foreground) {}
  49.     virtual void OnRealizePalette() {}
  50.  
  51. protected:
  52.     friend class VDVideoDisplayManager;
  53.  
  54.     VDVideoDisplayManager    *mpManager;
  55.  
  56.     bool    mbPreciseMode;
  57.     bool    mbTicksEnabled;
  58.     bool    mbRequiresFullScreen;
  59. };
  60.  
  61. class IVDVideoDisplayManager {
  62. };
  63.  
  64. class VDVideoDisplayManager : public VDThread, public IVDVideoDisplayManager {
  65. public:
  66.     VDVideoDisplayManager();
  67.     ~VDVideoDisplayManager();
  68.  
  69.     bool    Init();
  70.     void    Shutdown();
  71.  
  72.     void    RemoteCall(void (*function)(void *), void *data);
  73.  
  74.     void    AddClient(VDVideoDisplayClient *pClient);
  75.     void    RemoveClient(VDVideoDisplayClient *pClient);
  76.     void    ModifyPreciseMode(bool enabled);
  77.     void    ModifyTicksEnabled(bool enabled);
  78.  
  79.     void RemapPalette();
  80.     HPALETTE    GetPalette() const { return mhPalette; }
  81.     const uint8 *GetLogicalPalette() const { return mLogicalPalette; }
  82.  
  83. protected:
  84.     void    ThreadRun();
  85.     void    ThreadRunFullRemote();
  86.     void    ThreadRunTimerOnly();
  87.  
  88.     void    DispatchTicks();
  89.     void    PostTick();
  90.     void    DispatchRemoteCalls();
  91.  
  92.     bool    RegisterWindowClass();
  93.     void    UnregisterWindowClass();
  94.  
  95.     bool    IsDisplayPaletted();
  96.     void    CreateDitheringPalette();
  97.     void    DestroyDitheringPalette();
  98.     void    CheckForegroundState();
  99.  
  100.     static LRESULT CALLBACK StaticWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  101.     LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  102.  
  103. protected:
  104.     enum {
  105.         kTimerID_ForegroundPoll    = 10,
  106.         kTimerID_Tick            = 11
  107.     };
  108.  
  109.     VDAtomicInt    mTicksEnabledCount;
  110.     uintptr    mTickTimerId;
  111.  
  112.     int        mPreciseModeCount;
  113.     uint32    mPreciseModePeriod;
  114.  
  115.     HPALETTE    mhPalette;
  116.     ATOM        mWndClass;
  117.     HWND        mhwnd;
  118.  
  119.     bool        mbMultithreaded;
  120.     bool        mbAppActive;
  121.  
  122.     typedef vdlist<VDVideoDisplayClient> Clients;
  123.     Clients        mClients;
  124.  
  125.     VDThreadID            mThreadID;
  126.     VDAtomicInt            mOutstandingTicks;
  127.  
  128.     VDSignal            mStarted;
  129.     VDCriticalSection    mMutex;
  130.  
  131.     struct RemoteCallNode : vdlist_node {
  132.         void (*mpFunction)(void *data);
  133.         void *mpData;
  134.         VDSignal mSignal;
  135.     };
  136.  
  137.     typedef vdlist<RemoteCallNode> RemoteCalls;
  138.     RemoteCalls    mRemoteCalls;
  139.  
  140.     uint8    mLogicalPalette[256];
  141. };
  142.  
  143. #endif
  144.